home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 406_01 / atoc / makefile < prev    next >
Encoding:
Makefile  |  1993-11-09  |  280 b   |  12 lines

  1. # makefile for ATOC
  2.  
  3. CFILES=    main.o atoc.o error.o \
  4.     autoagg.o comment.o constant.o function.o \
  5.     keywords.o labels.o preproc.o stdmacro.o trigraph.o \
  6.     getline.o isid.o strins.o strstr.o strtok.o
  7.  
  8. atoc.exe: $(CFILES)
  9.     ln -o atoc.exe $(CFILES) -lc
  10.  
  11. $(CFILES): atoc.h
  12.